要想在 Java 中连接 Redis,并进行操作,可以用 Spring Data Redis,它是由 Spring 集成的,一种是官方推荐的 Jedis,支持集群,其他功能差不多一样。这篇笔记记录如何整合单机版
的Jedis
[TOC]
环境/版本一览:
- 开发工具:Intellij IDEA 2018.2.2
- springboot: 2.0.5.RELEASE
- jdk:1.8.0_171
- maven:3.3.9
- jedis:2.9.0
1、pom.xml
1 | <dependencies> |
2、application.yml
1 | spring: |
3、config
配置 JedisPool(用于单机版) 资源池
1 | package com.fatal.config; |
4、Test
1 | package com.fatal.config; |
5、控制台
总结
- 单机版使用 JedisPool
- 集群版使用 JedisCluster
SpringBoot
的知识已经有前辈在我们之前探索了。比较喜欢的博主有:唐亚峰 | Battcn、方志朋的专栏、程序猿DD、纯洁的微笑。对这门技术感兴趣的可以去他们的博客逛逛。谢谢他们的分享~~
以上文章是我用来学习的Demo
,都是基于 SpringBoot2.x
版本。
源码地址: https://github.com/ynfatal/springboot2-learning/tree/master/chapter13